home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / sco / Packem < prev    next >
Text File  |  1995-05-03  |  556b  |  27 lines

  1. :
  2. # Packem - script to tar, compress and remove each of the source directories
  3. #    in the SkunkWare distribution. Written 29 Jun 1994 by Ronald Joe Record.
  4. #
  5.  
  6. SRC=/v/csc/usr/dist/src
  7.  
  8. DIRS="Games Tools X11"
  9.  
  10. for i in $DIRS
  11. do
  12.     cd $SRC/$i
  13.     for j in *
  14.     do
  15.         [ -d $j ] && {
  16.             echo "Creating tar archive of $SRC/$i/$j source directory ..."
  17.             tar cf $j.tar $j
  18.             echo "Compressing tar archive of $SRC/$i/$j source directory ..."
  19.             compress -H $j.tar
  20.             [ -f $j.tar.Z ] && {
  21.                 echo "Removing $SRC/$i/$j source directory ..."
  22.                 rm -rf $j
  23.             }
  24.         }
  25.     done
  26. done
  27.